Skip to content

Instantly share code, notes, and snippets.

Neuer Prüfungskatalog der Abschlussprüfung (AP2)

Für Fachinformatiker/Inen für Daten und Prozessanalyse nach neuem Katalog (2025)

Übersichet aller neuen bzw. GECHTRICHENE Themen

Diese Tabellen stammen aus Noel Langs YT Video.

1.Informieren und Beraten von Kunden und Kundinnen

(§ 4 Abs. 2 Nr. 2)

@ashish-kus
ashish-kus / ini_Parser.sh
Created January 24, 2024 11:37
.ini config parser function written in bash for reading and exporting vafiable from config file.
#!/usr/bin/env bash
parse_ini() {
local ini_file="$1"
# declare -A config
current_section=""
while IFS= read -r line; do
line=$(echo "$line" | sed -e 's/^[ \t]*//;s/[ \t]*$//')
if [[ "$line" =~ ^\; ]] || [[ -z "$line" ]]; then
continue
@dipakprajapati2703
dipakprajapati2703 / .claude-ignore
Last active August 28, 2026 06:52
This .claude-ignore file is used for Magento Project
# .claude-ignore - Files and directories to exclude from Claude Code analysis
# Place this in your Magento 2 project root directory
# Vendor Dependencies (too large and not project-specific)
/vendor/
/node_modules/
# Generated and Cache Files
/var/
/generated/
@toppa
toppa / asd-ste100.md
Last active August 28, 2026 06:51
ASD-STE100 (Simplified Technical English) output style for Claude Code
name ASD-STE100
description Simplified Technical English — one meaning per word, active voice, simple tense, short sentences, small noun clusters.
keep-coding-instructions true

You are an interactive CLI tool that helps users with software engineering tasks.

Write all English in ASD-STE100 Simplified Technical English. STE is a controlled language. The aerospace industry built it so that a reader who cannot ask a follow-up

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@lcrilly
lcrilly / oas2nginx.sh
Created December 19, 2023 16:00
Converts OpenAPI/Swagger spec into nginx.conf snippet (server context)
#!/usr/bin/env bash
#
# oas2nginx.sh (c) NGINX, Inc. [v0.5 13-Jan-2020] Liam Crilly <liam.crilly@nginx.com>
#
# Converts OpenAPI/Swagger spec into nginx.conf snippet (server context) as per
# https://www.nginx.com/blog/deploying-nginx-plus-as-an-api-gateway-part-1/
# Requires shyaml for YAML processing: https://github.com/0k/shyaml
# Defaults
#
@aarondfrancis
aarondfrancis / audit-your-codebase.md
Created August 14, 2026 15:20
A read-only, agent-orchestrated codebase audit prompt for data structures, state modeling, algorithms, and ownership.

Audit this entire codebase for materially useful simplifications in its data structures, state representation, control flow, algorithms, and ownership.

This is an audit-only exercise. Do not edit files, run tests, implement recommendations, commit, or push. Read-only inspection commands are allowed.

You are the coordinator. Continue until the complete codebase has been reviewed and the final audit is validated.

  1. Establish the coverage contract

Inspect the repository and inventory every identifiable subsystem.

<!DOCTYPE html>
<html>
<head>
<title></title>
<meta charset="utf-8" />
<script src="Scripts/jquery-1.9.1.min.js"></script>
<link href="Content/bootstrap.min.css" rel="stylesheet" />
<script src="Scripts/isRockFx.js"></script>
<script>
$(function () {
@rssnyder
rssnyder / oracle-cloud-free-tier-guide.md
Last active August 28, 2026 06:31
oracle-cloud-free-tier-guide

how to leverage oracle's temping offers

free tier limits

The limits of the free tier say that you can create up to 4 instances.

  • x2 x86 instances (2core/1g)
  • x2 ampere instances (with 4core/24g spread between them)
  • 200GB total boot volume space across all intances (minimum of 50G per instance)

[!WARNING]